Skip to main content

행렬의 덧셈

Solution

function solution(arr1, arr2) {
return arr1.map((list, xIdx) =>
list.map((value, yIdx) => value + arr2[xIdx][yIdx])
);
}

Review

.

References